home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr26 / netprog.zip / NETPROG.TAR / net / inet.h < prev    next >
C/C++ Source or Header  |  1989-12-17  |  310b  |  16 lines

  1. /*
  2.  * Definitions for TCP and UDP client/server programs.
  3.  */
  4.  
  5. #include    <stdio.h>
  6. #include    <sys/types.h>
  7. #include    <sys/socket.h>
  8. #include    <netinet/in.h>
  9. #include    <arpa/inet.h>
  10.  
  11. #define    SERV_UDP_PORT    6000
  12. #define    SERV_TCP_PORT    6000
  13. #define    SERV_HOST_ADDR    "192.43.235.6"    /* host addr for server */
  14.  
  15. char    *pname;
  16.